/* ═══════════════════════════════════════
   CSS Variables
════════════════════════════════════════ */
:root {
    --navy:     #030460;
    --sky:      #73D2E6;
    --sky2:     #C8F3FA;
    --sky3:     #eaf6fb;
    --amber:    #FFB201;
    --amber2:   #ffc93d;
    --white:    #ffffff;
    --gray:     #4a5e7a;
    --light-bg: #e0f7fb;
    --primary:  #0096C8;
    --sky-mid:  #A8E9F5;
}

* { box-sizing: border-box; }

body {
    font-family: 'Nunito', 'Poppins', sans-serif;
    color: var(--navy);
    overflow-x: hidden;
    background: var(--white);
}

/* ── Typography helpers ── */
.font-serif   { font-family: 'Playfair Display', Georgia, serif; }
.font-sans    { font-family: 'Nunito', sans-serif; }

/* ── Shared utilities ── */
.section-label {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 6px;
    display: block;
}
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--navy);
}
.section-title .accent { color: var(--primary); }
.divider-line {
    width: 48px; height: 4px;
    background: linear-gradient(90deg, var(--sky), var(--primary));
    border-radius: 4px;
    margin: 12px 0 18px;
}

.btn-primary-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary), #0077a8);
    color: #fff;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    padding: 12px 32px;
    font-size: .95rem;
    border: none;
    transition: all .25s;
    box-shadow: 0 4px 16px rgba(0,150,200,.3);
}
.btn-primary-brand:hover {
    background: linear-gradient(135deg, #0077a8, var(--navy));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,150,200,.4);
}
.btn-outline-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,.85);
    color: #fff;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    padding: 10px 28px;
    font-size: .95rem;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(6px);
    transition: all .25s;
}
.btn-outline-brand:hover {
    background: #fff;
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
}

/* ═══════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,150,200,.1);
    border-bottom: 2px solid var(--sky2);
    transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}

/* State saat di-scroll */
.navbar.navbar--scrolled {
    background: rgba(200,243,250,.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 32px rgba(0,150,200,.18);
    border-bottom: 1.5px solid rgba(200,243,250,.5);
}
.nav-link {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: var(--navy) !important;
    font-size: .9rem;
    transition: color .2s;
    padding: 6px 4px !important;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width .25s;
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--primary) !important; }

.btn-login {
    text-decoration: none;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    padding: 6px 22px;
    transition: all .25s;
}
.btn-login:hover { background: var(--primary); color: #fff; }

.btn-shop-nav {
    text-decoration: none;
    background: linear-gradient(135deg, var(--sky2), var(--sky-mid));
    color: var(--navy);
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .85rem;
    padding: 6px 22px;
    border: 2px solid var(--sky);
    transition: all .25s;
}
.btn-shop-nav:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ═══════════════════════════════════════
   HERO — fullscreen background image
════════════════════════════════════════ */
.hero {
    background-image: url('/img/background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 92vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Sky-tinted overlay agar tetap bernuansa biru muda */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(200,243,250,.45) 0%,
        rgba(234,246,251,.38) 50%,
        rgba(168,233,245,.30) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Hapus blob kedua */
.hero::after { content: none; }

.hero-wave {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    pointer-events: none;
    line-height: 0;
    z-index: 2;
}

.min-vh-hero { min-height: 72vh; }

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(3,4,96,.08);
    border: 1.5px solid rgba(3,4,96,.2);
    color: var(--navy);
    border-radius: 50px;
    padding: 6px 18px;
    font-family: 'Nunito', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .4px;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--navy);
    text-shadow: none;
}
.hero-highlight {
    color: var(--primary);
    font-style: normal;
    font-family: "Caveat Brush", cursive;
    font-weight: 400;
}
.hero-sub {
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    color: #2a3f55;
    max-width: 440px;
    line-height: 1.75;
    text-shadow: none;
}

.hero-divider {
    width: 56px; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--sky));
    border-radius: 4px;
    margin: 16px 0 20px;
}

/* Social proof */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    background: rgba(255,255,255,.55);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(3,4,96,.12);
    border-radius: 16px;
    padding: 14px 24px;
    display: inline-flex;
}
.hero-proof-item { display: flex; flex-direction: column; }
.hero-proof-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}
.hero-proof-label {
    font-family: 'Nunito', sans-serif;
    font-size: .72rem;
    color: var(--gray);
    font-weight: 600;
    letter-spacing: .5px;
}
.hero-proof-divider {
    width: 1px; height: 36px;
    background: rgba(3,4,96,.15);
}

/* Hero image card (right side) — tidak digunakan di fullscreen mode */
.hero-img-card { display: none; }
.hero-float-badge { display: none; }

/* ═══════════════════════════════════════
   ABOUT — White with sky accent
════════════════════════════════════════ */
.section-about {
    background: #fff;
    padding: 96px 0;
}
.about-img-wrap {
    position: relative;
    border-radius: 28px;
    overflow: visible;
}
.about-img-wrap img {
    border-radius: 24px;
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    box-shadow: 0 20px 56px rgba(0,150,200,.15);
    display: block;
    border: 4px solid var(--sky2);
}
/* Decorative ring behind image */
.about-img-wrap::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 32px;
    background: linear-gradient(135deg, var(--sky2), var(--sky3));
    z-index: -1;
}
.about-badge {
    position: absolute;
    bottom: -16px;
    right: -12px;
    background: linear-gradient(135deg, var(--primary), #0077a8);
    color: #fff;
    border-radius: 20px;
    padding: 16px 20px;
    max-width: 220px;
    font-family: 'Nunito', sans-serif;
    font-size: .82rem;
    line-height: 1.5;
    box-shadow: 0 8px 32px rgba(0,150,200,.3);
}
.about-badge strong {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    display: block;
    margin-bottom: 4px;
    color: var(--sky2);
}
.about-desc {
    font-family: 'Nunito', sans-serif;
    color: var(--gray);
    line-height: 1.85;
    font-size: .97rem;
}
.about-checklist { margin-top: 20px; }
.about-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: var(--navy);
    font-size: .94rem;
    margin-bottom: 12px;
    padding: 10px 14px;
    background: var(--sky3);
    border-radius: 12px;
    border-left: 4px solid var(--sky);
    transition: background .2s;
}

#about h2 {
    font-family: "Caveat Brush", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 4rem;
}

.about-check-item:hover { background: var(--sky2); }
.about-check-item i { color: var(--primary); font-size: 1.1rem; flex-shrink: 0; }

/* ═══════════════════════════════════════
   PRODUCTS — sky2 background
════════════════════════════════════════ */
.section-products {
    background: linear-gradient(180deg, var(--sky2) 0%, var(--sky3) 100%);
    padding: 88px 0 72px;
    position: relative;
}
.section-products::before { content: none; }

.prod-label-top {
    font-family: 'Nunito', sans-serif;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}
.prod-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}
.prod-title em {
    color: var(--primary);
    font-family: "Caveat Brush", cursive;
    font-weight: 400;
    font-style: normal;
    font-weight: 500;
    font-size: 3rem;
}
.prod-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: .92rem;
    color: var(--gray);
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.65;
}

/* Scroll wrap */
.prod-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
}
.prod-scroll-wrap::-webkit-scrollbar { display: none; }
.prod-cards-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    min-width: max-content;
    padding: 20px 4px 12px;
}

/* Card */
.prod-card {
    background: rgba(255,255,255,.9);
    border: 1.5px solid rgba(0,150,200,.15);
    border-radius: 24px;
    padding: 30px 18px 22px;
    text-align: center;
    width: 168px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,150,200,.08);
    transition: transform .25s, box-shadow .25s;
    opacity: 0;
    backdrop-filter: blur(6px);
}
.prod-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 40px rgba(0,150,200,.18);
    border-color: var(--sky);
}
.prod-card.prod-visible {
    animation: prod-fade-up .5s ease both;
}
@keyframes prod-fade-up {
    from { opacity:0; transform:translateY(28px); }
    to   { opacity:1; transform:translateY(0); }
}
.prod-card--dark {
    background: linear-gradient(160deg, var(--primary) 0%, #005f9e 100%);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0,150,200,.35);
    transform: translateY(-10px);
}
.prod-card--dark:hover {
    transform: translateY(-16px);
    box-shadow: 0 20px 56px rgba(0,150,200,.45);
}

/* Badge */
.prod-badge {
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    font-family: 'Nunito', sans-serif;
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 5px 14px 6px;
    border-radius: 0 0 14px 14px;
    white-space: nowrap;
}
.prod-badge--bs { background: var(--amber); color: var(--navy); }
.prod-badge--new { background: #18b4d8; color: #fff; }

/* Image */
.prod-img-wrap {
    width: 76px; height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky2), var(--sky3));
    display: flex; align-items: center; justify-content: center;
    margin: 12px auto 16px;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid rgba(255,255,255,.8);
    box-shadow: 0 4px 14px rgba(0,150,200,.12);
}
.prod-img-wrap--dark {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.3);
}
.prod-img-wrap img { width: 54px; height: 54px; object-fit: contain; }

.prod-name { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .92rem; color: var(--navy); margin-bottom: 4px; }
.prod-name--light { color: #fff; }
.prod-desc { font-family: 'Nunito', sans-serif; font-size: .74rem; color: var(--gray); line-height: 1.45; margin-bottom: 10px; flex: 1; }
.prod-desc--light { color: rgba(255,255,255,.7); }
.prod-price { font-family: 'Playfair Display', serif; font-weight: 700; font-size: .94rem; color: var(--primary); margin-bottom: 2px; }
.prod-price--light { color: var(--sky2); }
.prod-price-sub { font-family: 'Nunito', sans-serif; font-size: .72rem; color: var(--gray); margin-bottom: 14px; }
.prod-price-sub--light { color: rgba(255,255,255,.55); }

.prod-btn {
    display: block; width: 100%; text-align: center;
    padding: 8px 0; border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800; font-size: .78rem;
    text-decoration: none;
    border: 1.5px solid var(--primary);
    color: var(--primary); background: transparent;
    transition: all .2s; margin-top: auto;
}
.prod-btn:hover { background: var(--primary); color: #fff; }
.prod-btn--light {
    border-color: rgba(255,255,255,.7);
    color: #fff;
    background: rgba(255,255,255,.12);
}
.prod-btn--light:hover { background: rgba(255,255,255,.25); border-color: #fff; }

.prod-footer-note {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 36px;
    font-family: 'Nunito', sans-serif;
    font-size: .84rem;
    color: var(--gray);
    flex-wrap: wrap;
    background: rgba(255,255,255,.7);
    border: 1.5px solid var(--sky2);
    border-radius: 50px;
    padding: 10px 28px;
    display: inline-flex;
    backdrop-filter: blur(6px);
}
.prod-sep { color: var(--sky); font-weight: 900; }
.prod-footer-wrap { display: flex; justify-content: center; margin-top: 28px; }

/* ═══════════════════════════════════════
   WHY / BENEFIT — sky3 with cards
════════════════════════════════════════ */
#why h2 em {
    font-family: "Caveat Brush", cursive;
    font-weight: 500;
    font-style: normal;
} 

.section-why {
    background: #fff;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}
.section-why::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--sky3) 0%, #fff 60%);
    pointer-events: none;
    z-index: 0;
}
.section-why .container { position: relative; z-index: 1; }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    border: 1.5px solid var(--sky2);
    border-radius: 18px;
    padding: 18px 16px;
    transition: box-shadow .25s, transform .25s;
    box-shadow: 0 2px 12px rgba(0,150,200,.06);
}
.why-item:hover {
    box-shadow: 0 8px 28px rgba(0,150,200,.14);
    transform: translateY(-3px);
    border-color: var(--sky);
}
.why-icon-wrap {
    width: 48px; height: 48px; min-width: 48px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.why-icon-wrap.sky   { background: linear-gradient(135deg, var(--sky2), var(--sky3)); color: var(--primary); }
.why-icon-wrap.amber { background: linear-gradient(135deg, rgba(255,178,1,.15), rgba(255,178,1,.08)); color: var(--amber); }
.why-item h6 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .93rem; color: var(--navy); margin-bottom: 4px; }
.why-item p  { font-family: 'Nunito', sans-serif; font-size: .8rem; color: var(--gray); margin: 0; line-height: 1.55; }
.why-img-wrap {
    position: relative;
    border-radius: 28px;
    overflow: visible;
}
.why-img-wrap img {
    width: 100%; height: 100%; min-height: 360px;
    object-fit: contain; border-radius: 24px;
    filter: drop-shadow(0 20px 48px rgba(0,150,200,.2));
}
.why-img-badge {
    position: absolute; bottom: 12px; right: 8px;
    background: rgba(255,255,255,.95);
    border: 2px solid var(--sky2);
    border-radius: 50px;
    padding: 8px 18px;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 20px rgba(0,150,200,.15);
    font-family: 'Nunito', sans-serif;
    font-weight: 700; font-size: .8rem; color: var(--primary);
}
.why-img-badge i { color: var(--primary); }

/* ═══════════════════════════════════════
   TESTIMONI — sky2/sky3 background
════════════════════════════════════════ */
#testimoni h2 span em {
    font-family: "Caveat Brush", cursive;
    font-weight: 500;
    font-style: normal;
}

.section-testimoni {
    background: linear-gradient(180deg, var(--sky2) 0%, var(--sky3) 100%);
    padding: 96px 0;
    position: relative;
}
.section-testimoni::before { content: none; }

.testi-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: .92rem;
    color: var(--gray);
    max-width: 400px;
    margin: 0 auto;
}
.testi-card {
    background: rgba(255,255,255,.9);
    border-radius: 24px;
    padding: 30px 26px;
    border-top: 4px solid var(--sky);
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,150,200,.08);
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(6px);
}
.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0,150,200,.15);
}
.testi-card--featured {
    background: linear-gradient(160deg, var(--primary) 0%, #005f9e 100%);
    border-top-color: var(--sky2);
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(0,150,200,.35);
}
.testi-card--featured:hover { transform: translateY(-16px); }

.testi-stars { color: var(--amber); font-size: 1rem; letter-spacing: 2px; }
.testi-text {
    font-family: 'Nunito', sans-serif;
    font-size: .9rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    flex: 1;
}
.testi-card--featured .testi-text { color: rgba(255,255,255,.8); }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--sky2);
    flex-shrink: 0;
}
.testi-card--featured .testi-avatar { border-color: rgba(255,255,255,.5); }
.testi-name { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .9rem; color: var(--navy); margin-bottom: 2px; }
.testi-card--featured .testi-name { color: #fff; }
.testi-role { font-family: 'Nunito', sans-serif; font-size: .74rem; color: var(--gray); }
.testi-card--featured .testi-role { color: rgba(255,255,255,.6); }

/* ═══════════════════════════════════════
   FOOTER — Dark navy with sky accent
════════════════════════════════════════ */
footer {
    background: linear-gradient(160deg, #020340 0%, var(--navy) 100%);
    color: rgba(255,255,255,.75);
    border-top: 3px solid var(--sky2);
}
footer p, footer li { font-family: 'Nunito', sans-serif; font-size: .85rem; line-height: 1.75; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 6px; }
footer ul li a {
    font-family: 'Nunito', sans-serif;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .2s;
    font-size: .85rem;
}
footer ul li a:hover { color: var(--sky2); }
footer h6 {
    font-family: 'Nunito', sans-serif;
    color: var(--sky2);
    font-weight: 800;
    font-size: .9rem;
    letter-spacing: .5px;
    margin-bottom: 14px;
}
.footer-divider { border-color: rgba(255,255,255,.1); }
.footer-bottom { font-family: 'Nunito', sans-serif; font-size: .8rem; color: rgba(255,255,255,.4); }
.contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-family: 'Nunito', sans-serif; font-size: .85rem; }
.contact-item i { color: var(--sky2); margin-top: 3px; font-size: 1rem; min-width: 16px; }

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (768–991px)
════════════════════════════════════════ */
@media (max-width: 991.98px) {
    .hero { min-height: auto; padding: 80px 0 60px; }
    .min-vh-hero { min-height: auto; }
    .hero-title { font-size: 2.8rem; }

    .section-about, .section-why, .section-testimoni { padding: 64px 0; }
    .section-products { padding: 64px 0 56px; }

    .why-grid { gap: 12px; }
    .why-img-wrap img { min-height: 280px; }

    .prod-cards-row { min-width: unset; flex-wrap: wrap; justify-content: center; }
    .prod-card { width: 148px; padding: 24px 12px 16px; }
    .prod-img-wrap { width: 64px; height: 64px; }
    .prod-img-wrap img { width: 46px; height: 46px; }
    .prod-name { font-size: .85rem; }
    .prod-desc { font-size: .72rem; }

    .testi-card--featured { transform: none; }
    .testi-card--featured:hover { transform: translateY(-5px); }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE (≤767px)
════════════════════════════════════════ */
@media (max-width: 767.98px) {
    .section-about, .section-why, .section-testimoni { padding: 52px 0; }
    .section-products { padding: 52px 0 44px; }

    .hero { padding: 72px 0 52px; }
    .hero-title { font-size: 2.2rem; }
    .hero-social-proof { gap: 14px; padding: 10px 16px; }
    .hero-img-card { margin-top: 32px; }

    .about-badge { right: 8px; bottom: -10px; max-width: 190px; font-size: .76rem; }

    .why-grid { grid-template-columns: 1fr; gap: 10px; }
    .why-img-wrap { margin-bottom: 32px; }
    .why-img-wrap img { min-height: 220px; }

    .prod-scroll-wrap { overflow-x: visible; }
    .prod-cards-row {
        flex-wrap: wrap;
        justify-content: center;
        min-width: unset;
        padding: 12px 4px 8px;
        gap: 12px;
    }
    .prod-card { width: calc(50% - 6px); padding: 22px 10px 16px; }
    .prod-card--dark { transform: none; }
    .prod-img-wrap { width: 58px; height: 58px; }
    .prod-img-wrap img { width: 42px; height: 42px; }
    .prod-name { font-size: .82rem; }
    .prod-desc { font-size: .68rem; }
    .prod-price { font-size: .8rem; }
    .prod-btn { font-size: .74rem; padding: 7px 0; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE SMALL (≤480px)
════════════════════════════════════════ */
@media (max-width: 480px) {
    .hero-title { font-size: 1.9rem; }
    .section-title { font-size: 1.6rem; }
    .prod-card { width: calc(50% - 5px); padding: 18px 8px 12px; }
    .prod-img-wrap { width: 50px; height: 50px; }
    .prod-img-wrap img { width: 36px; height: 36px; }
    .btn-primary-brand, .btn-outline-brand { padding: 10px 22px; font-size: .88rem; }
}

/* ═══════════════════════════════════════
   CUSTOM SCROLLBAR
════════════════════════════════════════ */

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--sky3);
}

/* Chrome / Edge / Safari */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--sky3);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--sky), var(--primary));
    border-radius: 99px;
    border: 2px solid var(--sky3);
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary), #0077a8);
}
